/*产品 start*/
.product_wrapper{
    padding: 60px 0 30px 0;
    text-align: center;
    position: relative;
}

.product_left{
    width: 265px;
    background-color: #009f3b;
    overflow: hidden;
}

.product_left .pro_left_header{
    height: 105px;
    padding: 20px 6px 30px 6px;
}

.pro_left_header .pro_cn_title{
    font-size: 22px;
    color: white;
    margin-bottom: 5px;
}

.pro_left_header .pro_en_title{
    font-size: 22px;
    color: white;
}

.product_left .pro_left_nav{
    padding: 0 6px 6px 6px;
}

.pro_left_nav ul{
    width: 100%;
    background-color: #ffffff;
}

.pro_left_nav ul li{
    width: 100%;
    font-size: 16px;
    height: 51px;
    line-height: 50px;
    text-align: center;
    color: #2e2e2e;
    cursor: pointer;
    padding: 0 20px;
}

.pd_nav_item_wrapper{
    position: relative;
}

.pro_left_nav ul .pd_nav_item_wrapper:after{
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #e5e5e5;
    left: 0;
    bottom: 0;
}

.pro_left_nav ul li:last-child .pd_nav_item_wrapper:after{
    content: "";
    background-color: transparent;
}

.pro_left_nav ul li:hover .pd_nav_item_wrapper:after{
    background-color: #00802e;
}

.pro_nav_active{
    background-color: #00802e;
}

.pro_nav_active .pd_nav_item_wrapper:after{
    content: "";
    background-color: #00802e !important;
}

.pro_nav_active a{
    color: white;
}

.product_right{
    width: 935px;
    overflow: hidden;
}

.product_right .pro_img_wrapper{
    width: 282px;
    height: 282px;
    float: left;
    margin-left: 29px;
    margin-bottom: 35px;
    cursor: pointer;
}

.pro_img_wrapper .pro_img{
    width: 100%;
    height: 282px;
    overflow: hidden;
    position: relative;
    border:2px solid transparent;
}

.pro_img .pro_desc{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    transition: bottom 0.2s;
}

.pro_img:hover .pro_desc{
    bottom: 0;
}

.pro_img_wrapper:hover .pro_img{
    border:2px solid #009f3b;
}

.pro_img_wrapper img{
    width: 100%;
    height: 100%;
    transition: all 0.12s;
}

.pro_img_wrapper:hover img{
    transform: scale(1.2);
}

.pro_more{
    width: 200px;
    height: 50px;
    border: 1px solid #009f3b;
    clear: both;
    display: inline-block;
    line-height: 50px;
    margin-top: 30px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    bottom: 0;
    cursor: pointer;
    transition: background-color 0.1s;
}

.pro_more a{
    display: inline-block;
    width: 100%;
    height: 100%;
}

.pro_more:hover{
    background-color: #009f3b;
}

.pro_more:hover a{
    color: white;
}

.pro_more a{
    color: #009f3b;
    font-size: 18px;
}

.pd_hidden{
    display: none;
}
/*产品 end*/